home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Science / RLaB / help / norm < prev    next >
Text File  |  1994-04-25  |  542b  |  26 lines

  1. norm:
  2.  
  3. Syntax:    norm( A )
  4.     norm( A , "type" )
  5.  
  6. Description:
  7.  
  8.     The first form defaults to computing the 1-norm of the input
  9.     matrix. The second form allows the user to specify the desired
  10.     vector or matrix norm.
  11.  
  12.     type:
  13.  
  14.     "M" or "m" returns max(abs( MATRIX ))
  15.     
  16.     "1", "O" or "o" return the 1-norm (default)
  17.  
  18.     "2" returns the matrix 2-norm (largest singular value)
  19.  
  20.     "I" or "i" returns the infinity-norm
  21.  
  22.     "F", "f", "E" or "e" returns the Frobenius norm.
  23.  
  24.     LAPACK subroutines DLANGE and ZLANGE are used to compute all
  25.     norms, except the 2-norm.
  26.